home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / dbms_mag / 9104 / sql1.apr < prev    next >
Text File  |  1991-03-01  |  210b  |  7 lines

  1.  
  2. CREATE VIEW customer (c#, name, city) AS
  3.  SELECT customer_name.c#, name, customer_site.city
  4.    FROM customer_name, customer_site
  5.   WHERE customer_name.c# = customer_site.c#
  6.     AND customer_site.type = `HQ';
  7.